gatsby-pingbot/.eslintrc.json

35 lines
548 B
JSON
Raw Normal View History

2021-08-09 14:21:08 +00:00
{
"env": {
"browser": true,
"es2021": true,
"node": true
},
2021-09-16 20:47:50 +00:00
"parser": "@typescript-eslint/parser",
2021-08-09 14:21:08 +00:00
"extends": [
"eslint:recommended",
2021-09-16 20:47:50 +00:00
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended"
2021-08-09 14:21:08 +00:00
],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
2021-09-16 20:47:50 +00:00
"react",
"@typescript-eslint"
2021-08-09 14:21:08 +00:00
],
"rules": {
2021-08-11 20:22:16 +00:00
"semi": [
"error",
"never"
],
"quotes": [
"error",
2021-08-19 21:13:03 +00:00
"single"
2021-08-11 20:22:16 +00:00
]
2021-08-09 14:21:08 +00:00
}
}