diff --git a/demo/test/snapshots/linting-config.test.js.md b/demo/test/snapshots/linting-config.test.js.md index 1f5ce00..e303797 100644 --- a/demo/test/snapshots/linting-config.test.js.md +++ b/demo/test/snapshots/linting-config.test.js.md @@ -2072,10 +2072,9 @@ Generated by [AVA](https://ava.li). "prettier/prettier": [␊ "warn",␊ {␊ - "arrowParens": "always",␊ "printWidth": 120,␊ - "semi": false,␊ - "singleQuote": true␊ + "singleQuote": true,␊ + "semi": false␊ }␊ ],␊ "promise/always-return": [␊ diff --git a/demo/test/snapshots/linting-config.test.js.snap b/demo/test/snapshots/linting-config.test.js.snap index 9e28a42..abc80ea 100644 Binary files a/demo/test/snapshots/linting-config.test.js.snap and b/demo/test/snapshots/linting-config.test.js.snap differ diff --git a/package.json b/package.json index 9c57d29..19cb8f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fs/eslint-config-tree", - "version": "6.0.0-alpha.2", + "version": "6.0.0-alpha.3", "description": "Shared Tree configuration that contains overrides and enhancements on top of the base frontier configuration.", "main": "index.js", "repository": { @@ -21,10 +21,16 @@ "demo/test/*.js" ] }, + "files": [ + "**/*.*", + "!.github/**", + "!demo/**", + "!.*" + ], "dependencies": { - "@babel/eslint-parser": "^7.19.1", + "@babel/eslint-parser": "^7.21.3", "@fs/eslint-config-frontier-react": "^11.0.0-alpha.6", - "eslint": "^8.35.0", + "eslint": "^8.36.0", "eslint-plugin-bestpractices": "github:skye2k2/eslint-plugin-bestpractices", "eslint-plugin-deprecate": "^0.7.0", "eslint-plugin-html": "^7.1.0", @@ -48,8 +54,7 @@ "lint:fix": "eslint demo --fix", "lint:quiet": "eslint demo --quiet", "lint:report": "eslint demo '**/*.html' --format html --output-file ./reports/linting/linting_report.html & eslint demo --format json --output-file ./reports/linting/linting_report.json", - "lint:snapshot": "eslint demo --no-color --output-file ./demo/test/snapshots/local-linting-output.txt; eslint --print-config file.js > ./demo/test/snapshots/local-linting-final-config.json; npm run test:format", - "preinstall": "git config --global url.https://github.com/.insteadOf git://github.com/", + "lint:snapshot": "eslint --print-config file.js > ./demo/test/snapshots/local-linting-final-config.json; eslint demo --no-color --output-file ./demo/test/snapshots/local-linting-output.txt; npm run test:format", "postinstall": "npm rebuild husky", "publish": "npmPublish", "test": "npm run lint:snapshot; ava",