mirror of https://github.com/vector-im/riot-web
Use unquoted keys
parent
77ea76a0e0
commit
160a1fd8c8
22
.eslintrc.js
22
.eslintrc.js
|
@ -1,19 +1,19 @@
|
||||||
module.exports = {
|
module.exports = {
|
||||||
"extends": ["matrix-org", "matrix-org/react"],
|
extends: ["matrix-org", "matrix-org/react"],
|
||||||
"env": {
|
env: {
|
||||||
"browser": true,
|
browser: true,
|
||||||
"node": true,
|
node: true,
|
||||||
},
|
},
|
||||||
"rules": {
|
rules: {
|
||||||
"quotes": "off",
|
"quotes": "off",
|
||||||
},
|
},
|
||||||
"overrides": [{
|
overrides: [{
|
||||||
"files": ["src/**/*.{ts,tsx}"],
|
files: ["src/**/*.{ts,tsx}"],
|
||||||
"extends": ["matrix-org/ts", "matrix-org/react"],
|
extends: ["matrix-org/ts", "matrix-org/react"],
|
||||||
"env": {
|
env: {
|
||||||
"browser": true,
|
browser: true,
|
||||||
},
|
},
|
||||||
"rules": {
|
rules: {
|
||||||
"quotes": "off",
|
"quotes": "off",
|
||||||
// While converting to ts we allow this
|
// While converting to ts we allow this
|
||||||
"@typescript-eslint/no-explicit-any": "off",
|
"@typescript-eslint/no-explicit-any": "off",
|
||||||
|
|
Loading…
Reference in New Issue