Skip to content

Commit

Permalink
build(lint): replace standard with only prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Jan 7, 2022
1 parent 92f498f commit 2ca9f82
Show file tree
Hide file tree
Showing 10 changed files with 2,949 additions and 6,140 deletions.
13 changes: 4 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,7 @@
module.exports = {
env: {
browser: true,
commonjs: true,
es2021: true
},
extends: ['standard'],
extends: ["plugin:prettier/recommended"],
parserOptions: {
ecmaVersion: 12
ecmaVersion: 12,
},
rules: {}
}
rules: {},
};
3 changes: 1 addition & 2 deletions .lintstagedrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"*.js": [
"prettier-standard",
"standard --fix"
"eslint --fix"
]
}
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = { extends: ['@commitlint/config-angular'] }
module.exports = { extends: ["@commitlint/config-angular"] };
Loading

0 comments on commit 2ca9f82

Please sign in to comment.