autobaan/.eslintrc.json

15 lines
255 B
JSON
Raw Normal View History

2021-11-17 14:18:15 +01:00
{
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"**/*.js",
"!src/**/*.ts"
2021-11-17 14:18:15 +01:00
]
}