Skip to content

Commit 8644403

Browse files
authored
Merge pull request #83 from atom-community/solid
2 parents 8f48bd2 + c9df9fa commit 8644403

24 files changed

+1183
-840
lines changed

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"cSpell.words": ["globify"]
2+
"cSpell.words": ["Globified", "globify"],
3+
"explorer.fileNesting.patterns": {
4+
"index.js": "*.js"
5+
}
36
}

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,26 @@ Add a lint script to your `package.json`:
6060
}
6161
```
6262

63+
- **solid**:
64+
You can instead use the `solid` version which throws errors instead of warning:
65+
66+
```json
67+
{
68+
"extends": "eslint-config-atomic/solid",
69+
"ignorePatterns": ["dist/", "node_modules/"]
70+
}
71+
```
72+
73+
- **strict-solid**:
74+
Same as the solid version but it is strict:
75+
76+
```json
77+
{
78+
"extends": "eslint-config-atomic/strict-solid",
79+
"ignorePatterns": ["dist/", "node_modules/"]
80+
}
81+
```
82+
6383
- **react**:
6484
It supports react using `eslint-plugin-react`.
6585

package.json

Lines changed: 18 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -27,45 +27,47 @@
2727
},
2828
"prettier": "prettier-config-atomic",
2929
"dependencies": {
30-
"@babel/core": "^7.23.7",
31-
"@babel/eslint-parser": "^7.23.3",
30+
"@babel/core": "^7.24.0",
31+
"@babel/eslint-parser": "^7.23.10",
3232
"@babel/plugin-syntax-flow": "^7.23.3",
3333
"@babel/plugin-syntax-jsx": "^7.23.3",
34-
"@typescript-eslint/eslint-plugin": "6.18.1",
35-
"@typescript-eslint/parser": "6.18.1",
34+
"@typescript-eslint/eslint-plugin": "7.1.1",
35+
"@typescript-eslint/parser": "7.1.1",
3636
"anymatch": "^3.1.3",
37-
"eslint": "^8.56.0",
37+
"eslint": "^8.57.0",
3838
"eslint-config-prettier": "^9.1.0",
39-
"eslint-plugin-html": "^7.1.0",
39+
"eslint-plugin-html": "^8.0.0",
4040
"eslint-plugin-import": "^2.29.1",
4141
"eslint-plugin-json": "^3.1.0",
4242
"eslint-plugin-node": "^11.1.0",
4343
"eslint-plugin-only-warn": "npm:@aminya/eslint-plugin-only-warn@^1.2.2",
4444
"eslint-plugin-optimize-regex": "^1.2.1",
45-
"eslint-plugin-react": "^7.33.2",
45+
"eslint-plugin-react": "^7.34.0",
46+
"eslint-plugin-solid": "^0.13.1",
4647
"eslint-plugin-yaml": "^0.5.0",
4748
"globify-gitignore": "^1.0.3",
4849
"make-synchronous": "^0.1.1",
49-
"prettier": "3.1.1",
50+
"prettier": "3.2.5",
5051
"read-pkg-up": "^7.0.1",
51-
"semver": "^7.5.4",
52+
"semver": "^7.6.0",
5253
"typescript": "^5.3.3"
5354
},
5455
"devDependencies": {
5556
"@types/babel__core": "^7.20.5",
5657
"@types/coffeescript": "^2.5.7",
57-
"@types/eslint": "^8.56.2",
58+
"@types/eslint": "^8.56.5",
5859
"@types/eslint-config-prettier": "^6.11.3",
5960
"@types/execa": "^2.0.0",
60-
"@types/node": "^20.11.0",
61+
"@types/node": "^20.11.24",
6162
"@types/read-pkg-up": "^6.0.0",
62-
"@types/semver": "^7.5.6",
63+
"@types/semver": "^7.5.8",
6364
"@types/shelljs": "^0.8.15",
6465
"eslint-config-atomic": "link:",
66+
"eslint-plugin-astro": "^0.31.4",
6567
"execa": "^5.1.1",
66-
"gitly": "^2.4.8",
67-
"npm-check-updates": "16.14.12",
68-
"prettier-config-atomic": "^3.1.0",
68+
"gitly": "^2.5.2",
69+
"npm-check-updates": "16.14.15",
70+
"prettier-config-atomic": "^4.0.0",
6971
"shelljs": "^0.8.5",
7072
"shx": "^0.3.4"
7173
},
@@ -88,4 +90,4 @@
8890
"react": "react.js",
8991
"strict": "strict.js",
9092
"strict-react": "strict-react.js"
91-
}
93+
}

0 commit comments

Comments
 (0)