happiness-scss
One Style You Might Like
It is already here ;)
It is called happiness, because we hope that it brings you joy, love and ends strife among your fellow developers.
Reminder: Happiness is not for everyone. Some people will choose to be sad, normal and some might even say"standard""Sass Guidelines". That is alright. A happy person is comfortable with being them and fine to let others be who they want to be. "You do you"
© happinessDon't worry about that it's called SCSS Since this works on Sass Lint, it will also work well with your
*.sass
files ;)
It's has filename extension-based syntax detection.
---
CLI install and usage
The easiest way to use Happiness SCSS Style to check your code is to install it globally as a Node command line program. To do so, simply run the following command in your terminal (flag -g installshappiness-scss
globally on your system, omit it if you want to install in the current working directory):
```shell
npm i -g happiness-scss
or using yarn cli
yarn global add happiness-scss
```
After you've done that you should be able to use the happiness-scss
program. The simplest use case would be checking the style of all files in the current working directory and inner (./**/*.s+(a|c)ss
),
NOTE! it's always ignore ./node_modules/**
:
```shell
happiness-scss
./test/fixtures/function-name-format.scss
5:11 error Function 'camelCase' should be written in lowercase with hyphens function-name-format
✖ 1 problem (1 error, 0 warnings)
```
Or you can say where it should lint
```shell
happiness-scss "./test//.scss"
look for .scss and .sass files
happiness-scss "./test//.s+(a|c)ss"
```
CLI Options
-h, --help
Outputs usage information for the CLI
-f, --format [format]
Default formatter stylish
Your also can choose one of the available Eslint formats to format the output of sass-lint results
```shell
happiness-scss -f table
```
-i, --ignore [pattern]
Default ignore path ./node_modules/**
A pattern that should be ignored from linting. Multiple patterns can be used by separating each pattern by ,
. Patterns should be wrapped in double quotes (will be merged with other ignore options)
```shell
happiness-scss -i "./test/fixtures/function-name-format.scss"
```
```shell
more than one path
happiness-scss -i "./test/, ./dev/wip/"
```
-o, --output [output]
The path plus file name relative to where happiness-scss
is being run from where the output should be written to.
```shell
json
happiness-scss -f json -o "./tmp/lint-results.json"
html
happiness-scss -f html -o "./tmp/lint-results.html"
```
-m, --show-max-stack [number]
This will be useful for a huge list of errors when they do not even fit in the console. It will print max errors in console.
See example Nodejs Api → happinessScss.lintFileText() → config.showMaxStack
.
```shell
max 100 errors will be printed,
happiness-scss -m 100 -q
```
-q
not to fall-q, --no-exit
Prevents the CLI from throwing an error if there is one (useful for development work)
-d, --no-disabling
Disabling linters via source will not work.
Yeah, only hard core!
-V, --version
Outputs the version number of Happiness SCSS
---
Nodejs API
Installhappiness-scss
in your project
```shell
npm i --save happiness-scss
or using yarn cli
yarn add happiness-scss
```
happinessScss.lintText(file, config, cb)
removed!, doing same as .lintFileText()
happinessScss.lintFileText(file, config, cb)
Handles ignored files for plugins such as the gulp plugin. Checks every file passed to it against the ignores as specified in users config or passed in default config. Parameters: Name | Data type | Attributes | Description --- | --- | --- | ---file
| Object
| | object, see example below
config
| Object
| \ | little configuration, see example below
cb
| function
| \ | see description below
file
This must be an object with following properties:
- text (string) - content for checking
- format (string) - syntax definition
- filename (string) - name of checking file with relative path
text: fs.readFileSync(testFilePath).toString(),
format: path.extname(testFilePath).replace('.', ''), // scss
filename: testFilePath
};
happinessScss.lintFileText(testFile);
```
config
Here you can set few parameters
```js
const myConfig = {
formatter: 'stylish',
showMaxStack: 50, // if 0 is unlimited, see description below
outputFile: './path/to/output.file',
noDisabling: false // if true -> "Disabling linters via source" will not work
ignore: [ // must be an Array
'./sass/vendor/**/*.scss',
'./sass/test/**/*.scss'
// Note! './node_modules/**' is always in ignore
]
};
```
config.showMaxStack
Default value 0
.
This parameter will be useful for a huge list of errors when they do not even fit in the console. It will print max errors in console.
Example if set showMaxStack: 10
```shell
C:/Wezom/NodeModules/happiness-scss/tmp/huge.scss
1:0 error line 1 exceeds the maximum line length of 120 max-line-length
1:1 error Single line statements are not allowed brace-style
1:1 error Space expected between blocks empty-line-between-blocks
1:9 error Commas should be followed by a space space-after-comma
1:10 error Selectors must be placed on new lines single-line-per-selector
1:20 error Commas should be followed by a space space-after-comma
1:21 error Selectors must be placed on new lines single-line-per-selector
1:31 error Combinators are not allowed no-combinators
1:40 error Whitespace required before { space-before-brace
1:48 error Space expected after :
space-after-colon
✖ 10 problems (10 errors, 0 warnings)
NOTE! Showed maximum 10 errors for each result
and 8123 errors was not printed in console
```
Note! This option is available only for .format()
method in nodejs API
cb(err, data)
Callback for handing errors or resulting data.
Example
```js
const fs = require('fs');
const path = require('path');
const happinessScss = require('happiness-scss');
const testFile = fs.readFileSync(path.join(dirname, './fixtures/no-ids.scss'));
happinessScss.lintText(testFile, null, function(err, data) {
if (err) {
// handle errors
}
// handle data
});
```
happinessScss.lintFiles(files, config, cb)
Takes a glob pattern or target string and creates an array of files as targets for linting taking into account any user specified Parameters: Name | Data type | Attributes | Description --- | --- | --- | ---files
| string
| | a glob pattern or single file path as a lint target
config
| Object
| \ | little configuration, see example in happinessScss.lintFileText() → config
cb
| function
| \ | see description in happinessScss.lintFileText() → cb(err, data)
Live example of usage
```js const path = require('path'); const happinessScss = require('happiness-scss'); function pathTo (glob) {return path.join(__dirname, glob);
}
happinessScss.lintFiles(pathTo('./fixtures/.scss'), {
ignore: [
pathTo('./fixtures/hex-notation.scss')
]
}, function(err, data) {
if (err) {
throw new Error(err);
}
if (data.errorCount.count) {
let formatted = happinessScss.format(data.results, {
formatter: 'table',
showMaxStack: 50
});
console.log(formatted);
happinessScss.outputResults(data.results, {
formatter: 'html',
outputFile: pathTo('../tmp/lint-files-output.html')
});
}
});
```
errorCount(results)
Parses results object to count errors and return paths to files with detected errors. Returns errors object containing the error count and paths for files incl. errorswarningCount(results)
Parses results object to count warnings and return paths to files with detected warnings. Returns warnings object containing the error count and paths for files incl. warningsresultCount(results)
Parses results object to count warnings and errors and return a cumulative count of both Returns the cumulative count (number
) of errors and warnings detected
format (results, config)
Handles formatting of results using EsLint formatters Returns results in the specified format as string. Use console.log(formattedResult) for showing in consoleoutputResults (results, config)
Handles outputting results whether this be straight to the console/stdout or to a file. Passes results to the format function to ensure results are output in the chosen formatfailOnError (results, config)
Throws an error if there are any errors detected. The error includes a count of all errors and a list of all files that include errors. No returns value. Just scream if has errors ;) ---Rules
Please read docs / RulesI disagree with rule X, can you change it?
No. The whole point ofhappiness-scss
is to save you time by avoiding bikeshedding about code style. There are lots of debates online about tabs vs. spaces, etc. that will never be resolved. These debates just distract from getting stuff done. At the end of the day you have to 'just pick something', and that's the whole philosophy of happiness-scss
- its a bunch of sensible 'just pick something' opinions. Hopefully, users see the value in that over defending their own opinions.
Pro tip: Just use happiness-scss
and move on.
There are actual real problems that you could spend your time solving! ;)---
Why should I use Happiness SCSS Style?
If you do not want to, do not use it. And be happy without it ;)In defense of
happiness-scss
it is better to quote part of the description from the standardjs.com
The beauty of\- noJavaScript StandardHappiness SCSS is that it's simple. No one wants to maintain multiple hundred-line style configuration files for every module/project they work on. Enough of this madness!
.sass-lint.yml
and other config files
\- no sasslint configs in package.json
\- no .sassignore.rc
files
\- forget about tone of configs
Only rock-n-roll and happiness-scss
---
Disabling Linters via Source
Happiness SCSS works on Sass Lint, so you can use special comments to disable and enable certain rules throughout your source files in a variety of scenarios. Note! This comments may be ignored on linting process by CLI and Nodejs API for strict checkout! Below are examples of how to use this feature:Disable a rule for the entire file
```scss // sass-lint:disable border-zero p { border: none; // No lint reported } ```Disable more than 1 rule
```scss // sass-lint:disable border-zero, quotes p { border: none; // No lint reported content: "hello"; // No lint reported } ```Disable a rule for a single line
```scss p { border: none; // sass-lint:disable-line border-zero } ```Disable all lints within a block (and all contained blocks)
```scss p { // sass-lint:disable-block border-zero border: none; // No result reported } a { border: none; // Failing result reported } ```Disable and enable again
```scss // sass-lint:disable border-zero p { border: none; // No result reported } // sass-lint:enable border-zero a { border: none; // Failing result reported } ```Disable/enable all linters
```scss // sass-lint:disable-all p { border: none; // No result reported } // sass-lint:enable-all a { border: none; // Failing result reported } ``` ---Is there a readme badge?
Yes! If you usehappiness-scss
in your project, you can include one of these badges in your readme to let people know that your code is using the happiness-scss
style.
Is there an automatic formatter?
Sorry, there no automatic formatter. ---Task Runner Integration
TextEditor/IDE Integration
Already available solutions Also we have opened issue for wanted list. ---Tests
npm test
for testing js and scss code style
npm run happiness-fix
for automatically fix most of problems with js code style