@oroinc/oro-stylelint-config 5.1.0-dev002 → 6.1.0-lts001

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.
Files changed (3) hide show
  1. package/LICENSE +1 -3
  2. package/index.js +10 -10
  3. package/package.json +9 -8
package/LICENSE CHANGED
@@ -1,8 +1,6 @@
1
- oro-stylelint-config
2
-
3
1
  The MIT License (MIT)
4
2
 
5
- Copyright (c) 2013, Oro, Inc.
3
+ Copyright (c) 2024 Oro Inc.
6
4
 
7
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
8
6
  of this software and associated documentation files (the "Software"), to deal
package/index.js CHANGED
@@ -2,8 +2,8 @@
2
2
  /* eslint-disable quote-props */
3
3
 
4
4
  module.exports = {
5
- 'plugins': ['stylelint-scss', 'stylelint-declaration-strict-value', 'stylelint-stylistic'],
6
- 'extends': ['stylelint-stylistic/config', 'stylelint-config-recommended-scss'],
5
+ 'plugins': ['stylelint-scss', 'stylelint-declaration-strict-value', '@stylistic/stylelint-plugin'],
6
+ 'extends': ['@stylistic/stylelint-config', 'stylelint-config-recommended-scss'],
7
7
  'rules': {
8
8
  'at-rule-empty-line-before': [
9
9
  'always',
@@ -95,8 +95,8 @@ module.exports = {
95
95
  ]
96
96
  }
97
97
  ],
98
- 'value-list-comma-newline-after': null,
99
- 'stylistic/block-closing-brace-newline-after': [
98
+ '@stylistic/value-list-comma-newline-after': null,
99
+ '@stylistic/block-closing-brace-newline-after': [
100
100
  'always',
101
101
  {
102
102
  'ignoreAtRules': [
@@ -105,7 +105,7 @@ module.exports = {
105
105
  ]
106
106
  }
107
107
  ],
108
- 'stylistic/max-line-length': [
108
+ '@stylistic/max-line-length': [
109
109
  120,
110
110
  {
111
111
  'ignore': [
@@ -113,7 +113,7 @@ module.exports = {
113
113
  ]
114
114
  }
115
115
  ],
116
- 'stylistic/no-eol-whitespace': [
116
+ '@stylistic/no-eol-whitespace': [
117
117
  true,
118
118
  {
119
119
  'ignore': [
@@ -121,9 +121,9 @@ module.exports = {
121
121
  ]
122
122
  }
123
123
  ],
124
- 'stylistic/number-leading-zero': 'never',
125
- 'stylistic/string-quotes': 'single',
126
- 'stylistic/indentation': [
124
+ '@stylistic/number-leading-zero': 'never',
125
+ '@stylistic/string-quotes': 'single',
126
+ '@stylistic/indentation': [
127
127
  4,
128
128
  {
129
129
  'indentClosingBrace': false,
@@ -132,7 +132,7 @@ module.exports = {
132
132
  ]
133
133
  }
134
134
  ],
135
- 'stylistic/function-comma-newline-after': null,
135
+ '@stylistic/function-comma-newline-after': null,
136
136
  'scss/at-else-if-parentheses-space-before': 'always',
137
137
  'scss/at-else-empty-line-before': 'never',
138
138
  'scss/at-function-pattern': '^[a-z]+([a-z0-9-]+[a-z0-9]+)?$',
package/package.json CHANGED
@@ -1,19 +1,20 @@
1
1
  {
2
2
  "name": "@oroinc/oro-stylelint-config",
3
- "author": "Oro, Inc (https://www.oroinc.com)",
3
+ "author": "Oro, Inc. (https://oroinc.com)",
4
4
  "license": "MIT",
5
- "version": "5.1.0-dev002",
5
+ "version": "6.1.0-lts001",
6
6
  "description": "Stylelint config used by ORO",
7
7
  "main": "index.js",
8
8
  "files": [
9
9
  "index.js"
10
10
  ],
11
11
  "dependencies": {
12
- "postcss": "^8.4.19",
13
- "stylelint": "^15.3.0",
14
- "stylelint-config-recommended-scss": "^9.0.1",
15
- "stylelint-config-standard": "^31.0.0",
16
- "stylelint-declaration-strict-value": "^1.9.1",
17
- "stylelint-stylistic": "^0.4.1"
12
+ "@stylistic/stylelint-config": "^2.0.0",
13
+ "@stylistic/stylelint-plugin": "^3.1.2",
14
+ "postcss": "^8.5.3",
15
+ "stylelint": "^16.17.0",
16
+ "stylelint-config-recommended-scss": "^14.0.0",
17
+ "stylelint-config-standard": "^37.0.0",
18
+ "stylelint-declaration-strict-value": "^1.10.11"
18
19
  }
19
20
  }