Skip to content

Commit

Permalink
lint all HTML files, and other extensions, phetsims/chipper#1474
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Kauzmann <[email protected]>
  • Loading branch information
zepumph committed Sep 26, 2024
1 parent b77329b commit ed0c965
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@ export default [
rules: {
'no-bitwise': 'off'
},
ignores: [
'js/display/swash/pkg',
'js/display/guillotiere/pkg'
],
languageOptions: {
globals: {
himalaya: 'readonly',
Expand All @@ -27,5 +23,20 @@ export default [
he: 'readonly'
}
}
},
{
files: [
'tests/**/*.html',
'examples/**/*.html'
],
rules: {
'phet/bad-sim-text': 'off'
}
},
{
ignores: [
'js/display/swash/pkg',
'js/display/guillotiere/pkg'
]
}
];

0 comments on commit ed0c965

Please sign in to comment.