Skip to content

Commit

Permalink
Merge pull request #83 from atom-community/solid
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Mar 5, 2024
2 parents 8f48bd2 + c9df9fa commit 8644403
Show file tree
Hide file tree
Showing 24 changed files with 1,183 additions and 840 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"cSpell.words": ["globify"]
"cSpell.words": ["Globified", "globify"],
"explorer.fileNesting.patterns": {
"index.js": "*.js"
}
}
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,26 @@ Add a lint script to your `package.json`:
}
```

- **solid**:
You can instead use the `solid` version which throws errors instead of warning:

```json
{
"extends": "eslint-config-atomic/solid",
"ignorePatterns": ["dist/", "node_modules/"]
}
```

- **strict-solid**:
Same as the solid version but it is strict:

```json
{
"extends": "eslint-config-atomic/strict-solid",
"ignorePatterns": ["dist/", "node_modules/"]
}
```

- **react**:
It supports react using `eslint-plugin-react`.

Expand Down
34 changes: 18 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,45 +27,47 @@
},
"prettier": "prettier-config-atomic",
"dependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/core": "^7.24.0",
"@babel/eslint-parser": "^7.23.10",
"@babel/plugin-syntax-flow": "^7.23.3",
"@babel/plugin-syntax-jsx": "^7.23.3",
"@typescript-eslint/eslint-plugin": "6.18.1",
"@typescript-eslint/parser": "6.18.1",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"anymatch": "^3.1.3",
"eslint": "^8.56.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "npm:@aminya/eslint-plugin-only-warn@^1.2.2",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-solid": "^0.13.1",
"eslint-plugin-yaml": "^0.5.0",
"globify-gitignore": "^1.0.3",
"make-synchronous": "^0.1.1",
"prettier": "3.1.1",
"prettier": "3.2.5",
"read-pkg-up": "^7.0.1",
"semver": "^7.5.4",
"semver": "^7.6.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/coffeescript": "^2.5.7",
"@types/eslint": "^8.56.2",
"@types/eslint": "^8.56.5",
"@types/eslint-config-prettier": "^6.11.3",
"@types/execa": "^2.0.0",
"@types/node": "^20.11.0",
"@types/node": "^20.11.24",
"@types/read-pkg-up": "^6.0.0",
"@types/semver": "^7.5.6",
"@types/semver": "^7.5.8",
"@types/shelljs": "^0.8.15",
"eslint-config-atomic": "link:",
"eslint-plugin-astro": "^0.31.4",
"execa": "^5.1.1",
"gitly": "^2.4.8",
"npm-check-updates": "16.14.12",
"prettier-config-atomic": "^3.1.0",
"gitly": "^2.5.2",
"npm-check-updates": "16.14.15",
"prettier-config-atomic": "^4.0.0",
"shelljs": "^0.8.5",
"shx": "^0.3.4"
},
Expand All @@ -88,4 +90,4 @@
"react": "react.js",
"strict": "strict.js",
"strict-react": "strict-react.js"
}
}
Loading

0 comments on commit 8644403

Please sign in to comment.