Skip to content

Commit

Permalink
Derp
Browse files Browse the repository at this point in the history
  • Loading branch information
tentone committed Aug 11, 2024
1 parent 0eb5c4f commit 22240ed
Show file tree
Hide file tree
Showing 17 changed files with 3,417 additions and 2,831 deletions.
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

34 changes: 16 additions & 18 deletions .eslintrc.js → eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
// eslint-disable-next-line no-undef
export default {
root: true,
parserOptions: {
sourceType: 'module',
languageOptions: {
ecmaVersion: 2020,
ecmaFeatures: {impliedStrict: true}
sourceType: "module"
},
plugins: ['import', 'jsdoc'],
ignores: ['LASLAZWorker.js'],
rules: {
'arrow-body-style': ['error', 'always'],
'arrow-parens': 'error',
Expand All @@ -21,19 +19,19 @@ export default {
'guard-for-in': 'off',
'id-blacklist': 'off',
'id-match': 'off',
'sort-imports': ['off', {
ignoreCase: false,
ignoreDeclarationSort: false,
ignoreMemberSort: false,
memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single']
}],
'import/no-deprecated': 'off',
'import/no-unassigned-import': 'off',
'import/order': 'error',
'jsdoc/check-alignment': 'error',
'jsdoc/check-indentation': 'off',
'jsdoc/newline-after-description': 'error',
'jsdoc/no-types': 'off',
// 'sort-imports': ['off', {
// ignoreCase: false,
// ignoreDeclarationSort: false,
// ignoreMemberSort: false,
// memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single']
// }],
// 'import/no-deprecated': 'off',
// 'import/no-unassigned-import': 'off',
// 'import/order': 'error',
// 'jsdoc/check-alignment': 'error',
// 'jsdoc/check-indentation': 'off',
// 'jsdoc/newline-after-description': 'error',
// 'jsdoc/no-types': 'off',
'max-classes-per-file': 'off',
'max-len': 'off',
'lines-between-class-members': 'error',
Expand Down
35 changes: 18 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "potree-core",
"version": "2.0.8",
"version": "2.0.9",
"description": "Potree wrapper for three.js applications",
"repository": {
"type": "git",
Expand All @@ -17,8 +17,8 @@
"start": "npm run build && webpack-dev-server --config webpack.example.js --mode development --progress --port 5200",
"docs": "jsdoc -d docs source",
"pub": "npm run build && npm publish --access public .",
"lint": "eslint --ext .js source",
"lint-fix": "eslint --ext .js --fix source"
"lint": "eslint source",
"lint-fix": "eslint --fix source"
},
"keywords": [
"three",
Expand All @@ -31,29 +31,30 @@
"peerDependencies": {
"three": ">0.125.0"
},
"dependencies": {
"three": "^0.154.0",
"brotli": "1.3.3"
},
"devDependencies": {
"@types/node": "18.11.18",
"@types/node": "20.8.4",
"@types/three": "^0.152.1",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"brotli": "1.3.3",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.3",
"eslint": "8.30.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-tsdoc": "0.2.17",
"eslint": "9.9.0",
"eslint-plugin-tsdoc": "0.3.0",
"eslint-plugin-typescript": "0.14.0",
"html-loader": "4.2.0",
"html-webpack-plugin": "5.5.0",
"raw-loader": "4.0.2",
"style-loader": "3.3.1",
"three": "^0.154.0",
"ts-loader": "9.4.2",
"typescript": "4.9.4",
"webpack": "5.76.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"ts-loader": "9.5.1",
"typescript": "5.5.4",
"webpack": "5.93.0",
"webpack-bundle-analyzer": "4.10.2",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"worker-loader": "3.0.8"
}
}
Loading

0 comments on commit 22240ed

Please sign in to comment.