Skip to content

Commit

Permalink
build: Ignore no-unused-vars when names are starting with _
Browse files Browse the repository at this point in the history
  • Loading branch information
dlespiau committed Aug 14, 2019
1 parent f085971 commit d22ec50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion std/.eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"no-restricted-syntax": ["error", "ForInStatement", "LabeledStatement", "WithStatement"],
"no-use-before-define": ["error", { "functions": false }],
"no-shadow": 0,
"no-param-reassign": 0
"no-param-reassign": 0,
"no-unused-vars": ["error", { "argsIgnorePattern": "^_" }]
}
}

0 comments on commit d22ec50

Please sign in to comment.