Skip to content

Commit

Permalink
chore(coding-standards): fixed eslint regression [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
Maurice Faber committed Nov 13, 2020
1 parent 737c860 commit 4ac3a1b
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ parserOptions:

extends:
- eslint:recommended
- plugin:prettier/recommended
- prettier
- plugin:import/errors
- plugin:import/warnings
Expand Down
13 changes: 6 additions & 7 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,18 @@
"source.fixAll": true
},
"editor.defaultFormatter": "dbaeumer.vscode-eslint",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"eslint.format.enable": true,
"eslint.alwaysShowStatus": true,
"eslint.enable": true,
"eslint.format.enable": true,
"eslint.validate": ["javascript", "typescript"],
"mochaExplorer.files": "src/**/*.test.ts",
"mochaExplorer.require": "ts-node/register",
"mochaExplorer.timeout": 20000,
"files.associations": {
"CODE_OF_CONDUCT": "markdown",
"CONTRIBUTING": "markdown"
},
"yaml.format.enable": true,
"mochaExplorer.files": "src/**/*.test.ts",
"mochaExplorer.require": "ts-node/register",
"mochaExplorer.timeout": 20000,
"prettier.disableLanguages": ["javascript", "typescript"],
"prettier.enable": true,
"tslint.enable": false
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"resolveJsonModule": true,
"isolatedModules": true
},
"include": ["./src/**/*.ts"],
"include": ["./src/**/*.ts", "./*.js"],
"exclude": ["node_modules", "dist"],
"parserOptions": {
"ecmaVersion": 2018,
Expand Down

0 comments on commit 4ac3a1b

Please sign in to comment.