diff --git a/eslint.config.mjs b/eslint.config.mjs new file mode 100644 index 0000000..f536497 --- /dev/null +++ b/eslint.config.mjs @@ -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' + } + } +]; \ No newline at end of file