https://github.com/richard1320/auto-comment-bracket
Auto Comment Bracket is a tool to mark closing brackets in your CSS and SCSS files.
https://github.com/richard1320/auto-comment-bracket
bracket brackets css developer-tools mark-closing-brackets scss
Last synced: about 2 months ago
JSON representation
Auto Comment Bracket is a tool to mark closing brackets in your CSS and SCSS files.
- Host: GitHub
- URL: https://github.com/richard1320/auto-comment-bracket
- Owner: Richard1320
- Created: 2017-07-07T02:48:01.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T02:40:52.000Z (about 2 years ago)
- Last Synced: 2025-02-13T16:48:34.969Z (3 months ago)
- Topics: bracket, brackets, css, developer-tools, mark-closing-brackets, scss
- Language: SCSS
- Homepage:
- Size: 219 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Automatically mark each closing bracket with its selector in CSS and SCSS files
SCSS is probably the best thing to happen to CSS in a long time. It finally allowed us to store variables and have limited programming ability with mixin functions. It's also very useful for giving your styling code structure with its nested hierarchy. One common problem with large SASS files is that with a hierarchy multiple levels deep, it becomes difficult to tell which selector each bracket is actually closing.
Auto Comment Bracket is a tool to mark closing brackets in your CSS and SCSS files.
## Before
```scss
.level-1-2 {
.level-2-1 {
margin:250px;
.level-3-1 {
padding:10px;
}
.level-3-2 {
font-weight:700;
}
.level-3-3 {
position:relative;
}
}
.level-2-3 {
background:blue;
}
.level-2-2 {
color:green;
.level-3-1 {
font-size:14px;
}
.level-3-2 {
font-style:italic;
.level-4-1 {
color:#333;
}
}
.level-3-3 {
margin:42px;
}
}
}
```## After
```scss
.level-1-2 {
.level-2-1 {
margin:250px;
.level-3-1 {
padding:10px;
} /* ACB: // .level-3-1 */
.level-3-2 {
font-weight:700;
} /* ACB: // .level-3-2 */
.level-3-3 {
position:relative;
} /* ACB: // .level-3-3 */
} /* ACB: // .level-2-1 */
.level-2-3 {
background:blue;
} /* ACB: // .level-2-3 */
.level-2-2 {
color:green;
.level-3-1 {
font-size:14px;
} /* ACB: // .level-3-1 */
.level-3-2 {
font-style:italic;
.level-4-1 {
color:#333;
} /* ACB: // .level-4-1 */
} /* ACB: // .level-3-2 */
.level-3-3 {
margin:42px;
} /* ACB: // .level-3-3 */
} /* ACB: // .level-2-2 */
} /* ACB: // .level-1-2 */
```## Installation
`npm install -g auto-comment-bracket`
## Usage
You are able to specify an output file to write the compiled CSS to. If you do not specify an output file, it will overwrite your input file.
`auto-comment-bracket input.scss -o output.scss`
### Undo
You can easily revert the CSS back to the original file by passing `-u` or `--undo`.
`auto-comment-bracket input.scss -u -o output.scss`
## Directory
It can also loop through and process files in a directory or subdirectories. It will only run on files with a .css and .scss extension. You can use `-d` or `--directory` to tell it to loop. The input and output options should be the directory file path.
Optionally, you can include `-r` or `--recursive` to go through subdirectories as well. It will attempt to preserve the folder structure if you specify an output folder.
`auto-comment-bracket ./src/ -d -r -o ./dist/`
## Exclude
If the program is breaking one or more of your sass files, you can use `-e` or `--exclude` followed by the filepath and it will attempt to match that file and ignore it. It currently uses a simple string match so wildcards are not necessary and will not work.
`auto-comment-bracket ./src/ -d -r -e src/mixins/`