Files
AngularTicTacToe/eslintrc.json
Yuri Cherepanov 7637f45963 eslint-migration
2019-11-18 00:26:58 +02:00

25 lines
666 B
JSON

{
"env": {
"browser": true,
"node": true,
"es6": true,
"es2017": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"tsconfigRootDir": "."
},
"plugins": ["@typescript-eslint"],
"rules": {
"no-empty-function": ["warn"],
"@typescript-eslint/no-empty-function": ["warn"],
"@typescript-eslint/no-var-requires": ["warn"]
}
}