Use unquoted keys

pull/17847/head
J. Ryan Stinnett 2021-06-30 13:19:04 +01:00
parent 77ea76a0e0
commit 160a1fd8c8
1 changed files with 11 additions and 11 deletions

View File

@ -1,19 +1,19 @@
module.exports = {
"extends": ["matrix-org", "matrix-org/react"],
"env": {
"browser": true,
"node": true,
extends: ["matrix-org", "matrix-org/react"],
env: {
browser: true,
node: true,
},
"rules": {
rules: {
"quotes": "off",
},
"overrides": [{
"files": ["src/**/*.{ts,tsx}"],
"extends": ["matrix-org/ts", "matrix-org/react"],
"env": {
"browser": true,
overrides: [{
files: ["src/**/*.{ts,tsx}"],
extends: ["matrix-org/ts", "matrix-org/react"],
env: {
browser: true,
},
"rules": {
rules: {
"quotes": "off",
// While converting to ts we allow this
"@typescript-eslint/no-explicit-any": "off",