Skip to content

Commit

Permalink
Lint files in debug directory (Leaflet#8925)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonkoops authored Apr 23, 2023
1 parent f0ca5bc commit 2407c43
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
module.exports = {
ignorePatterns: [
'dist',
'debug',
'docs/docs/highlight',
'docs/examples/choropleth/us-states.js',
'docs/examples/geojson/sample-geojson.js',
Expand Down Expand Up @@ -66,6 +65,15 @@ module.exports = {
'eol-last': 'off',
'no-unused-vars': 'off'
}
},
{
files: [
'*.html'
],
rules: {
'eol-last': 'off',
'no-new': 'off'
}
}
]
};

0 comments on commit 2407c43

Please sign in to comment.