Files
AngularTicTacToe/eslintrc.json
Yuri Cherepanov 99e7ec00bf eslint-migration - disable warnings/errors
Disable warnings and errors on initial code
empty functions/require
remove transations stub from spec test
2019-11-18 01:24:07 +02:00

20 lines
488 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"]
}