We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.oxlintrc.json
1 parent 05fa138 commit a7e40d3Copy full SHA for a7e40d3
2 files changed
lib/linguist/languages.yml
@@ -3526,6 +3526,7 @@ JSON with Comments:
3526
- ".jscsrc"
3527
- ".jshintrc"
3528
- ".jslintrc"
3529
+ - ".oxlintrc.json"
3530
- ".swcrc"
3531
- api-extractor.json
3532
- devcontainer.json
samples/JSON with Comments/filenames/.oxlintrc.json
@@ -0,0 +1,35 @@
1
+{
2
+ "plugins": [
3
+ "import",
4
+ "typescript",
5
+ "unicorn"
6
+ ],
7
+ "env": {
8
+ "browser": true
9
+ },
10
+ "globals": {
11
+ "foo": "readonly"
12
13
+ "settings": {},
14
+ "rules": {
15
+ "eqeqeq": "warn",
16
+ "import/no-cycle": "error",
17
+ "react/self-closing-comp": [
18
+ "error",
19
+ {
20
+ "html": false
21
+ }
22
+ ]
23
24
+ "overrides": [
25
26
+ "files": [
27
+ "*.test.ts",
28
+ "*.spec.ts"
29
30
31
+ "@typescript-eslint/no-explicit-any": "off"
32
33
34
35
+}
0 commit comments