-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,462 changed files
with
620,957 additions
and
25,669 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,9 @@ | ||
src/vector/modernizr.js | ||
test/end-to-end-tests/node_modules/ | ||
test/end-to-end-tests/element/ | ||
test/end-to-end-tests/synapse/ | ||
test/end-to-end-tests/lib/ | ||
# Legacy skinning file that some people might still have | ||
src/component-index.js | ||
# Auto-generated file | ||
src/modules.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
module.exports = { | ||
plugins: ["matrix-org"], | ||
extends: ["./.eslintrc.js"], | ||
parserOptions: { | ||
project: ["./tsconfig.module_system.json"], | ||
}, | ||
overrides: [ | ||
{ | ||
files: ["module_system/**/*.{ts,tsx}"], | ||
extends: ["plugin:matrix-org/typescript", "plugin:matrix-org/react"], | ||
// NOTE: These rules are frozen and new rules should not be added here. | ||
// New changes belong in https://github.com/matrix-org/eslint-plugin-matrix-org/ | ||
rules: { | ||
// Things we do that break the ideal style | ||
"prefer-promise-reject-errors": "off", | ||
"quotes": "off", | ||
|
||
// We disable this while we're transitioning | ||
"@typescript-eslint/no-explicit-any": "off", | ||
// We're okay with assertion errors when we ask for them | ||
"@typescript-eslint/no-non-null-assertion": "off", | ||
|
||
// Ban matrix-js-sdk/src imports in favour of matrix-js-sdk/src/matrix imports to prevent unleashing hell. | ||
"no-restricted-imports": [ | ||
"error", | ||
{ | ||
paths: [ | ||
{ | ||
name: "matrix-js-sdk", | ||
message: "Please use matrix-js-sdk/src/matrix instead", | ||
}, | ||
{ | ||
name: "matrix-js-sdk/", | ||
message: "Please use matrix-js-sdk/src/matrix instead", | ||
}, | ||
{ | ||
name: "matrix-js-sdk/src", | ||
message: "Please use matrix-js-sdk/src/matrix instead", | ||
}, | ||
{ | ||
name: "matrix-js-sdk/src/", | ||
message: "Please use matrix-js-sdk/src/matrix instead", | ||
}, | ||
{ | ||
name: "matrix-js-sdk/src/index", | ||
message: "Please use matrix-js-sdk/src/matrix instead", | ||
}, | ||
], | ||
patterns: [ | ||
{ | ||
group: ["matrix-js-sdk/lib", "matrix-js-sdk/lib/", "matrix-js-sdk/lib/**"], | ||
message: "Please use matrix-js-sdk/src/* instead", | ||
}, | ||
], | ||
}, | ||
], | ||
}, | ||
}, | ||
], | ||
}; |
Oops, something went wrong.