-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove support for Stylelint less than 16.0.0 (#94)
- Loading branch information
Showing
43 changed files
with
1,651 additions
and
6,523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
# Changelog | ||
|
||
## Head | ||
|
||
## Removed | ||
|
||
- support for Stylelint less than 16.0.0 | ||
|
||
## 3.1.1 | ||
|
||
### Fixed | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,25 @@ | ||
module.exports = [ | ||
require("./rules/alpha-values"), | ||
require("./rules/border-widths"), | ||
require("./rules/font-sizes"), | ||
require("./rules/font-weights"), | ||
require("./rules/letter-spacings"), | ||
require("./rules/line-heights"), | ||
require("./rules/radii"), | ||
require("./rules/sizes"), | ||
require("./rules/space"), | ||
require("./rules/word-spacings"), | ||
require("./rules/z-indices"), | ||
import alphaValues from "./rules/alpha-values/index.js"; | ||
import borderWidths from "./rules/border-widths/index.js"; | ||
import fontSizes from "./rules/font-sizes/index.js"; | ||
import fontWeights from "./rules/font-weights/index.js"; | ||
import letterSpacings from "./rules/letter-spacings/index.js"; | ||
import lineHeights from "./rules/line-heights/index.js"; | ||
import radii from "./rules/radii/index.js"; | ||
import sizes from "./rules/sizes/index.js"; | ||
import space from "./rules/space/index.js"; | ||
import wordSpacings from "./rules/word-spacings/index.js"; | ||
import zIndices from "./rules/z-indices/index.js"; | ||
|
||
export default [ | ||
alphaValues, | ||
borderWidths, | ||
fontSizes, | ||
fontWeights, | ||
letterSpacings, | ||
lineHeights, | ||
radii, | ||
sizes, | ||
space, | ||
wordSpacings, | ||
zIndices, | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 7 additions & 2 deletions
9
lib/rules/alpha-values/__tests__/index.js → lib/rules/alpha-values/index.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 8 additions & 1 deletion
9
lib/rules/font-weights/__tests__/index.js → lib/rules/font-weights/index.test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.