├── .coffeelintignore ├── .github ├── no-response.yml └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── coffeelint.json ├── lib ├── main.coffee └── wrap-guide-element.coffee ├── package.json ├── spec ├── async-spec-helpers.js ├── helpers.js ├── wrap-guide-element-spec.coffee └── wrap-guide-spec.js └── styles └── wrap-guide.less /.coffeelintignore: -------------------------------------------------------------------------------- 1 | spec/fixtures 2 | -------------------------------------------------------------------------------- /.github/no-response.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/.github/no-response.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/LICENSE.md -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/README.md -------------------------------------------------------------------------------- /coffeelint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/coffeelint.json -------------------------------------------------------------------------------- /lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/lib/main.coffee -------------------------------------------------------------------------------- /lib/wrap-guide-element.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/lib/wrap-guide-element.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/package.json -------------------------------------------------------------------------------- /spec/async-spec-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/spec/async-spec-helpers.js -------------------------------------------------------------------------------- /spec/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/spec/helpers.js -------------------------------------------------------------------------------- /spec/wrap-guide-element-spec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/spec/wrap-guide-element-spec.coffee -------------------------------------------------------------------------------- /spec/wrap-guide-spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/spec/wrap-guide-spec.js -------------------------------------------------------------------------------- /styles/wrap-guide.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atom/wrap-guide/HEAD/styles/wrap-guide.less --------------------------------------------------------------------------------