Skip to content

Commit

Permalink
feat(eslint-config-lite): add the package for eslint without jest is …
Browse files Browse the repository at this point in the history
…named estlint-config-lite
  • Loading branch information
trylovetom committed Jan 3, 2022
1 parent 6b3edde commit 076a08c
Show file tree
Hide file tree
Showing 5 changed files with 758 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
## Document

- [EslintConfig](https://github.com/AllJointTW/AllJointTool/tree/master/packages/ESLintConfig): The ESLint Config Used For AllJointNext
- [ESlintConfig](https://github.com/AllJointTW/AllJointTool/tree/master/packages/ESLintConfig): The ESLint Config Used For AllJointNext
- [ESlintConfigLite](https://github.com/AllJointTW/AllJointTool/tree/master/packages/ESLintConfigLite): The ESLint Config Used For AllJointNext (without Jest)
- [ESLintConfigTypeScript](https://github.com/AllJointTW/AllJointTool/tree/master/packages/ESLintConfigTypeScript) The ESLint Config Be Used For AllJointNext
- [ESLintConfigVue](https://github.com/AllJointTW/AllJointTool/tree/master/packages/ESLintConfigVue) The ESLint Config Vue 2 Be Used For AllJointNext
- [ESLintConfigVue3](https://github.com/AllJointTW/AllJointTool/tree/master/packages/ESLintConfigVue3) The ESLint Config Vue 3 Be Used For AllJointNext
Expand Down
18 changes: 18 additions & 0 deletions packages/ESLintConfigLite/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"root": true,
"extends": [
"eslint:recommended",
"airbnb-base",
"plugin:prettier/recommended"
],
"env": {
"node": true,
"jest": true
},
"rules": {
"prettier/prettier": [
"error",
{ "singleQuote": true, "semi": false, "trailingComma": "none" }
]
}
}
Loading

0 comments on commit 076a08c

Please sign in to comment.