adevtool/.eslintrc

14 lines
285 B
Text
Raw Normal View History

2021-12-25 11:04:33 +01:00
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
2022-01-30 12:41:02 +01:00
"plugin:prettier/recommended"
2021-12-25 11:04:33 +01:00
],
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"rules": {
"prefer-const": "off",
"no-restricted-syntax": "off"
}
}