[codemirror] Remove unused lint exceptions (#48087)

This commit is contained in:
Jack Bates 2020-09-23 14:09:18 -07:00 committed by GitHub
parent 501c5a1d8b
commit 6bd973986b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,17 +3,12 @@
"rules": {
"adjacent-overload-signatures": false,
"array-type": false,
"arrow-return-shorthand": false,
"ban-types": false,
"callable-types": false,
"dt-header": false,
"jsdoc-format": false,
"max-line-length": false,
"no-any-union": false,
"no-consecutive-blank-lines": false,
"no-declare-current-package": false,
"no-padding": false,
"no-redundant-jsdoc": false,
"no-self-import": false,
"no-trailing-whitespace": false,
"no-unnecessary-generics": false,
@ -22,13 +17,10 @@
"object-literal-shorthand": false,
"only-arrow-functions": false,
"prefer-const": false,
"prefer-method-signature": false,
"semicolon": false,
"space-before-function-paren": false,
"space-within-parens": false,
"strict-export-declare-modifiers": false,
"typedef-whitespace": false,
"unified-signatures": false,
"whitespace": false
"unified-signatures": false
}
}