Skip to content

Commit

Permalink
fix ESlint (v2.2.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
rah-emil committed Aug 17, 2022
1 parent 0e3e95f commit 4742144
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 5 deletions.
10 changes: 8 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,14 @@ module.exports = {
env: {
browser: true,
},
extends: ['standard', 'prettier'],
plugins: ['prettier'],
extends: [
'eslint-config-standard',
'eslint-config-prettier'
],
plugins: [
'eslint-plugin-prettier',
'eslint-plugin-standard'
],
rules: {
'prettier/prettier': ['warn', {
'singleQuote': true
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "easy-toggler",
"version": "2.2.3",
"version": "2.2.4",
"description": "Simple class switcher on web elements. JavaScript only.",
"main": "dist/easy-toggler.cjs",
"module": "dist/easy-toggler.js",
Expand Down

0 comments on commit 4742144

Please sign in to comment.