Skip to content

Commit

Permalink
chore: Add linting (#9)
Browse files Browse the repository at this point in the history
* chore: Add linting

* fix: Handle exceptions when PR isn't a template
  • Loading branch information
mauriciolauffer authored Nov 24, 2023
1 parent a48bf15 commit b080a7a
Show file tree
Hide file tree
Showing 8 changed files with 2,364 additions and 727 deletions.
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
end_of_line = lf
indent_size = 2
indent_style = space
trim_trailing_whitespace = true
insert_final_newline = true
charset = utf-8
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
coverage
dist
gen
resources
5 changes: 5 additions & 0 deletions .eslintrc.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
root: true
extends:
- eslint-config-mlauffer-nodejs
parserOptions:
sourceType: module
5 changes: 1 addition & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
{
"files.watcherExclude": {
"**/node_modules/*/**": false,
"**/node_modules/[!@]*/**/*": true
}
"files.watcherExclude": {}
}
Loading

0 comments on commit b080a7a

Please sign in to comment.