├── coffeelint.json ├── .gitignore ├── .editorconfig ├── snippets ├── fa-helpers.json ├── fa-helpers-jsx.json ├── ratchicon--css.json ├── ratchicon--html.json ├── ratchicon--jsx.json ├── brandico-css.json ├── brandico.json ├── brandico-jsx.json ├── geomicon--css.json ├── social-css.json ├── geomicon--html.json ├── geomicon--jsx.json ├── social.json ├── social-jsx.json ├── foundicon.json ├── foundicon-jsx.json ├── fi--css.json ├── line-class.json └── line-class-jsx.json ├── .github └── workflows │ └── stale.yml ├── package.json ├── LICENSE.md ├── .circleci └── config.yml ├── gulpfile.js ├── CHANGELOG.md └── README.md /coffeelint.json: -------------------------------------------------------------------------------- 1 | { 2 | "max_line_length": { 3 | "value": null 4 | } 5 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Package Managers 2 | bower_components/ 3 | node_modules/ 4 | npm-debug.log* 5 | shrinkwrap.yaml 6 | vendor/ 7 | yarn-error.log 8 | yarn.lock 9 | 10 | # Development Files 11 | .eslintcache 12 | *.d.ts 13 | *.map 14 | 15 | # Project-specific 16 | todo.md 17 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig is awesome: http://EditorConfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | -------------------------------------------------------------------------------- /snippets/fa-helpers.json: -------------------------------------------------------------------------------- 1 | { 2 | ".source.svelte, .text.html": { 3 | "fa-li": { 4 | "body": "
  • $2
  • $0", 5 | "description": "
  • ", 6 | "prefix": "fa-li" 7 | }, 8 | "fa-stack": { 9 | "body": "\n $2\n$0", 10 | "description": "", 11 | "prefix": "fa-stack" 12 | }, 13 | "fa-ul": { 14 | "body": "$0", 15 | "description": "