├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── BLOG.Rmd ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── app.R ├── check_grammar.R ├── gramr.R └── zzz.R ├── README.md ├── codecov.yml ├── example.rmd ├── gramr.Rproj ├── inst ├── bundle.js └── rstudio │ └── addins.dcf ├── man ├── check_grammar.Rd ├── gramr.Rd ├── init_msg.Rd ├── init_write_good.Rd ├── parse_rmd.Rd ├── run_grammar_checker.Rd ├── write_good_file.Rd └── write_good_ip.Rd ├── shiny-wg.jpg ├── tests ├── testthat.R └── testthat │ ├── test.Rmd │ ├── test_multiple_lines.Rmd │ └── test_write_good_ip.R └── untitled-picture.jpg /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/.travis.yml -------------------------------------------------------------------------------- /BLOG.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/BLOG.Rmd -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: Your name goes here 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/R/app.R -------------------------------------------------------------------------------- /R/check_grammar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/R/check_grammar.R -------------------------------------------------------------------------------- /R/gramr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/R/gramr.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /example.rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/example.rmd -------------------------------------------------------------------------------- /gramr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/gramr.Rproj -------------------------------------------------------------------------------- /inst/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/inst/bundle.js -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/check_grammar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/man/check_grammar.Rd -------------------------------------------------------------------------------- /man/gramr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/man/gramr.Rd -------------------------------------------------------------------------------- /man/init_msg.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/man/init_msg.Rd -------------------------------------------------------------------------------- /man/init_write_good.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/man/init_write_good.Rd -------------------------------------------------------------------------------- /man/parse_rmd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/man/parse_rmd.Rd -------------------------------------------------------------------------------- /man/run_grammar_checker.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/man/run_grammar_checker.Rd -------------------------------------------------------------------------------- /man/write_good_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/man/write_good_file.Rd -------------------------------------------------------------------------------- /man/write_good_ip.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/man/write_good_ip.Rd -------------------------------------------------------------------------------- /shiny-wg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/shiny-wg.jpg -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test.Rmd: -------------------------------------------------------------------------------- 1 | "It should have been defined there. But it wasn't suddenly." 2 | -------------------------------------------------------------------------------- /tests/testthat/test_multiple_lines.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/tests/testthat/test_multiple_lines.Rmd -------------------------------------------------------------------------------- /tests/testthat/test_write_good_ip.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/tests/testthat/test_write_good_ip.R -------------------------------------------------------------------------------- /untitled-picture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasdumas/gramr/HEAD/untitled-picture.jpg --------------------------------------------------------------------------------