Skip to content

Commit

Permalink
Move stuff outside of package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed May 5, 2023
1 parent d3b9201 commit 440acde
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 22 deletions.
7 changes: 7 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"extends": ["stylelint", "stylelint/jest"],
"globals": {
"module": true,
"require": true
}
}
1 change: 1 addition & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"@stylelint/prettier-config"
3 changes: 3 additions & 0 deletions .remarkrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"plugins": ["@stylelint/remark-preset"]
}
3 changes: 3 additions & 0 deletions .stylelintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["."]
}
23 changes: 1 addition & 22 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,35 +17,14 @@
],
"scripts": {
"format": "prettier . --write",
"lint": "npm-run-all --parallel lint:*",
"lint:formatting": "prettier . --check",
"lint:js": "eslint . --ignore-path .gitignore",
"lint:md": "remark . --quiet --frail --ignore-path .gitignore",
"lint": "npm-run-all --parallel lint:*",
"release": "np",
"test": "jest",
"watch": "jest --watch"
},
"prettier": "@stylelint/prettier-config",
"eslintConfig": {
"extends": [
"stylelint",
"stylelint/jest"
],
"globals": {
"module": true,
"require": true
}
},
"remarkConfig": {
"plugins": [
"@stylelint/remark-preset"
]
},
"stylelint": {
"extends": [
"."
]
},
"dependencies": {
"postcss-scss": "^4.0.6",
"stylelint-config-recommended": "^12.0.0",
Expand Down

0 comments on commit 440acde

Please sign in to comment.