google_forms/.eslintrc.json

30 lines
574 B
JSON
Raw Permalink Normal View History

2024-08-09 12:04:48 +00:00
{
2024-08-21 06:34:30 +00:00
"parser": "@typescript-eslint/parser",
2024-08-09 12:04:48 +00:00
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
2024-08-21 06:34:30 +00:00
"prettier",
"@typescript-eslint"
2024-08-09 12:04:48 +00:00
],
"extends": [
"eslint:recommended",
2024-08-21 06:34:30 +00:00
"plugin:prettier/recommended",
"prettier",
"plugin:@typescript-eslint/recommended"
2024-08-09 12:04:48 +00:00
],
"rules": {
"prettier/prettier": "error",
"no-undef": "off",
"no-unused-vars": "off"
},
"globals": {
"$": "readonly",
"jQuery": "readonly",
"document": "readonly",
"window": "readonly",
"console": "readonly"
}
}