├── .gitignore ├── README.md ├── css └── README.md ├── html └── README.md └── java ├── README.md ├── android └── README.md └── spring └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | atlassian-ide-plugin.xml 3 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia-functional/coding-guidelines/HEAD/README.md -------------------------------------------------------------------------------- /css/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia-functional/coding-guidelines/HEAD/css/README.md -------------------------------------------------------------------------------- /html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia-functional/coding-guidelines/HEAD/html/README.md -------------------------------------------------------------------------------- /java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia-functional/coding-guidelines/HEAD/java/README.md -------------------------------------------------------------------------------- /java/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia-functional/coding-guidelines/HEAD/java/android/README.md -------------------------------------------------------------------------------- /java/spring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xebia-functional/coding-guidelines/HEAD/java/spring/README.md --------------------------------------------------------------------------------