@shibanet0/datamitsu-config 0.0.1-alpha-8 → 0.0.1-alpha-9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/datamitsu.js +26 -4
- package/dist/eslint/index.js +1 -1
- package/package.json +1 -1
package/datamitsu.js
CHANGED
|
@@ -863,7 +863,7 @@ var mapOfApps = {
|
|
|
863
863
|
|
|
864
864
|
// package.json
|
|
865
865
|
var name = "@shibanet0/datamitsu-config";
|
|
866
|
-
var version = "0.0.1-alpha-
|
|
866
|
+
var version = "0.0.1-alpha-9";
|
|
867
867
|
var dependencies = {
|
|
868
868
|
"@antebudimir/eslint-plugin-vanilla-extract": "1.16.0",
|
|
869
869
|
"@commitlint/cli": "20.2.0",
|
|
@@ -1038,7 +1038,11 @@ var cleanDependencies = (deps) => {
|
|
|
1038
1038
|
return deps;
|
|
1039
1039
|
}
|
|
1040
1040
|
if (!deps) return;
|
|
1041
|
-
const excludeDependencyNameList = [
|
|
1041
|
+
const excludeDependencyNameList = [
|
|
1042
|
+
...Object.keys(dependencies),
|
|
1043
|
+
"typescript",
|
|
1044
|
+
"@trivago/prettier-plugin-sort-imports"
|
|
1045
|
+
];
|
|
1042
1046
|
return Object.entries(deps).reduce(
|
|
1043
1047
|
(acc, [name2, version2]) => {
|
|
1044
1048
|
if (!excludeDependencyNameList.includes(name2)) {
|
|
@@ -1696,14 +1700,32 @@ var toolsConfig = {
|
|
|
1696
1700
|
name: "Eslint",
|
|
1697
1701
|
operations: {
|
|
1698
1702
|
fix: {
|
|
1699
|
-
args: [
|
|
1703
|
+
args: [
|
|
1704
|
+
"--report-unused-inline-configs",
|
|
1705
|
+
"0",
|
|
1706
|
+
"--report-unused-disable-directives-severity",
|
|
1707
|
+
"0",
|
|
1708
|
+
"--fix",
|
|
1709
|
+
"--quiet",
|
|
1710
|
+
"--config",
|
|
1711
|
+
tools.Path.join(facts().cwd, "eslint.config.js"),
|
|
1712
|
+
"{file}"
|
|
1713
|
+
],
|
|
1700
1714
|
command: "eslint",
|
|
1701
1715
|
globs: eslintGlobs,
|
|
1702
1716
|
mode: "per-file",
|
|
1703
1717
|
priority: 0
|
|
1704
1718
|
},
|
|
1705
1719
|
lint: {
|
|
1706
|
-
args: [
|
|
1720
|
+
args: [
|
|
1721
|
+
"--report-unused-inline-configs",
|
|
1722
|
+
"0",
|
|
1723
|
+
"--report-unused-disable-directives-severity",
|
|
1724
|
+
"0",
|
|
1725
|
+
"-u",
|
|
1726
|
+
"--check",
|
|
1727
|
+
"{file}"
|
|
1728
|
+
],
|
|
1707
1729
|
command: "prettier",
|
|
1708
1730
|
globs: eslintGlobs,
|
|
1709
1731
|
mode: "per-file"
|
package/dist/eslint/index.js
CHANGED