├── .editorconfig ├── .gitattributes ├── index.html ├── license ├── main.css ├── main.js ├── readme.md └── screenshot.png /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/old-feedback/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/old-feedback/HEAD/index.html -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/old-feedback/HEAD/license -------------------------------------------------------------------------------- /main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/old-feedback/HEAD/main.css -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/old-feedback/HEAD/main.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/old-feedback/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/old-feedback/HEAD/screenshot.png --------------------------------------------------------------------------------