Skip to content

Commit

Permalink
ignore .iml file for idea and fix eslint error for single quote and semi
Browse files Browse the repository at this point in the history
  • Loading branch information
openlg committed Mar 20, 2024
1 parent ef5e6d3 commit 51f095d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .eslintrc.js → .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
rules: {
indent: ['error', 2],
'linebreak-style': ['error', 'unix'],
quotes: ['error', 'single'],
semi: ['error', 'never']
quotes: ['off'],
semi: ['off']
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ node_modules
*.launch
.settings/
*.sublime-workspace
*.iml

# IDE - VSCode
.vscode/*
Expand Down

0 comments on commit 51f095d

Please sign in to comment.