Skip to content

Commit

Permalink
Upgrade to ESLint 9 and flat config, see phetsims/chipper#1474
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Sep 26, 2024
1 parent f998a79 commit 00085e3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
// Copyright 2024, University of Colorado Boulder

/**
* ESlint configuration for alpenglow.
*
* @author Sam Reid (PhET Interactive Simulations)
* @author Michael Kauzmann (PhET Interactive Simulations)
*/

import phetLibraryEslintConfig from '../chipper/eslint/phet-library.eslint.config.mjs';

export default [
...phetLibraryEslintConfig,
{
ignores: [ 'doc/lib/**/*' ],
rules: {
'no-bitwise': 'off',
'phet/todo-should-have-issue': 'off'
}
}
];

0 comments on commit 00085e3

Please sign in to comment.