@1024pix/eslint-plugin 1.2.2 → 1.3.1

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.
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
@@ -0,0 +1,6 @@
1
+ <component name="InspectionProjectProfileManager">
2
+ <profile version="1.0">
3
+ <option name="myName" value="Project Default" />
4
+ <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
5
+ </profile>
6
+ </component>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/eslint-plugin.iml" filepath="$PROJECT_DIR$/.idea/eslint-plugin.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # [1.3.0](https://github.com/1024pix/eslint-plugin/compare/v1.2.2...v1.3.0) (2024-07-16)
2
+
3
+ ### :rocket: Amélioration
4
+
5
+ - [#25](https://github.com/1024pix/eslint-plugin/pull/25) Ajout d'une règle forcant l'ajout d'un commentaire sur les colonnes.
6
+
1
7
  ## [1.2.2](https://github.com/1024pix/eslint-plugin/compare/v1.2.1...v1.2.2) (2024-07-16)
2
8
 
3
9
  ### :bug: Correction
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@1024pix/eslint-plugin",
3
- "version": "1.2.2",
3
+ "version": "1.3.1",
4
4
  "description": "Des règles de lint pour les projets 1024pix",
5
5
  "exports": {
6
6
  ".": "./index.js",
@@ -1,48 +0,0 @@
1
- module.exports = {
2
- "branches": [
3
- "main",
4
- "dev"
5
- ],
6
- "plugins": [
7
- [
8
- "@semantic-release/commit-analyzer",
9
- {
10
- "config": "@1024pix/conventional-changelog-pix",
11
- "releaseRules": [
12
- { revert: true, release: "patch" },
13
- { tag: "BUGFIX", pr: '*', release: "patch" },
14
- { tag: "BUMP", pr: '*', release: "patch" },
15
- { tag: "DOC", pr: '*', release: "patch" },
16
- { tag: "TECH", pr: '*', release: "patch" },
17
- { tag: "FEATURE", pr: '*', release: "minor" },
18
- { tag: "BREAKING", pr: '*', release: "major" },
19
- ],
20
- }
21
- ],
22
- [
23
- "@semantic-release/release-notes-generator",
24
- {
25
- "config": "@1024pix/conventional-changelog-pix"
26
- }
27
- ],
28
- "@semantic-release/changelog",
29
- "@semantic-release/github",
30
- [
31
- "@semantic-release/npm",
32
- {
33
- "npmPublish": process.env.NPM_PUBLISH === "true",
34
- }
35
- ],
36
- [
37
- "@semantic-release/git",
38
- {
39
- "assets": [
40
- "CHANGELOG.md",
41
- "package.json",
42
- "package-lock.json",
43
- ],
44
- "message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
45
- }
46
- ]
47
- ]
48
- }