Righteous is a modern CSS 3 formatter that implements the Kary Coding Standard for CSS. It is a rewriting parsing parser; It reads your CSS code into an AST (abstract syntax tree) and the rewrites that AST into code. This technique allows Righteous to fully format the code based on the specification. This package is the core righteous formatter to be used within other software such as Righteous for Visual Studio Code and similar software.
How Does It Look?
Usage?
Installation:
$ npm install righteous-core --save
And then ready to use:
const righteous =
require( 'righteous-core' )
const code =
"h1 { color: red }"
try {
const formattedCode = righteous( code )
} catch ( e ) {
console.error( "Righteous could not format the code because of" , e )
}
The .d.ts
declaration file is included within the project. Your compiler must auto detect it but if it can't then use:
/node_modules/righteous/typings/righteous.d.ts
Righteous
CSS Code Formatter Engine that implements the Kary Coding Standards
Righteous Info
⭐ Stars 10
🔗 Homepage coding.standards.kary.us
🔗 Source Code github.com
🕒 Last Update 6 months ago
🕒 Created 6 years ago
🐞 Open Issues 2
➗ Star-Issue Ratio 5
😎 Author pouyakary