Skip to content
This repository has been archived by the owner on May 19, 2023. It is now read-only.

Commit

Permalink
Resolve issues from github
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonmoeller committed Feb 20, 2018
1 parent ab24727 commit 418af4e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
23 changes: 12 additions & 11 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
module.exports = {
rules: {
'indentation': null,
'max-line-length': null,

'function-comma-newline-after': null,
'function-comma-newline-before': null,
Expand Down Expand Up @@ -33,8 +34,8 @@ module.exports = {
'declaration-block-semicolon-newline-before': null,
'declaration-block-semicolon-space-after': null,
'declaration-block-semicolon-space-before': null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-block-no-shorthand-property-overrides": null,
'declaration-block-no-redundant-longhand-properties': null,
'declaration-block-no-shorthand-property-overrides': null,

// prettier always adds the trailing semicolon
'declaration-block-trailing-semicolon': null,
Expand All @@ -55,8 +56,8 @@ module.exports = {
// 'selector-attribute-operator-space-before': 'never'

'selector-attribute-quotes': 'always',
'selector-combinator-space-after': 'always',
'selector-combinator-space-before': 'always',
'selector-combinator-space-after': null,
'selector-combinator-space-before': null,
'selector-descendant-combinator-no-non-space': true,
'selector-pseudo-class-parentheses-space-inside': 'never',
'selector-list-comma-newline-after': null,
Expand All @@ -73,8 +74,8 @@ module.exports = {

'media-query-list-comma-newline-after': null,
'media-query-list-comma-newline-before': null,
'media-query-list-comma-space-after': 'always',
'media-query-list-comma-space-before': 'never',
'media-query-list-comma-space-after': null,
'media-query-list-comma-space-before': null,
'at-rule-name-newline-after': null,
'at-rule-name-space-after': 'always',
'at-rule-semicolon-newline-after': null,
Expand All @@ -85,11 +86,11 @@ module.exports = {

'max-empty-lines': null,
'no-eol-whitespace': null,
"number-leading-zero": null,
"rule-empty-line-before": null,
// misc other rules
"color-hex-case": null
'number-leading-zero': null,
'rule-empty-line-before': null,

// prettier lowercases hex colors
'color-hex-case': null
}
};

2 changes: 2 additions & 0 deletions license
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
The MIT License (MIT)

Copyright (c) Shannon Moeller <me@shannonmoeller.com> (shannonmoeller.com)
Copyright (c) Hugo Dias <mail@hugodias.me> (https://hugodias.me)
Copyright (c) 2017 Simon Lydell

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"css"
],
"author": "Shannon Moeller <me@shannonmoeller.com>",
"homepage": "https://github.com/shannonmoeller/stylelint-config-prettier#readme",
"repository": "shannonmoeller/stylelint-config-prettier",
"license": "MIT",
"main": "index.js",
Expand Down

0 comments on commit 418af4e

Please sign in to comment.