UNPKG

threefiz

Version:

Implementation of a physics engine based on the [Three.js](https://github.com/mrdoob/three.js) library.

15 lines (14 loc) 436 B
module.exports = { root: true, env: { browser: true, es2020: true }, extends: [ 'eslint:recommended', 'plugin:@typescript-eslint/recommended', ], ignorePatterns: ['dist', '.eslintrc.cjs'], parser: '@typescript-eslint/parser', rules: { 'react-refresh/only-export-components': ['warn', { allowConstantExport: true }], 'react-hooks/exhaustive-deps': "off" } };