search for: strictnaming_b_1

Displaying 7 results from an estimated 7 matches for "strictnaming_b_1".

2019 Aug 09
7
Underscores in package names
Won't it be better to have a convention that allows lowercase, dash, underscore and dot as only valid characters for new package names and keep the ancient format validation scheme for older package names? This could be implemented by a single function, taking a strictNaming_b_1 parameter which defaults to true. Easy to use, and compliance results will vary according to the parameter value, allowing strict compliance for new package names and lazy compliance for older ones. Doing so allows to enforce a new package name convention while also insuring continuity of complian...
2019 Aug 09
3
Underscores in package names
...> It would be interesting to do an actual analysis of the changes in these > trends over time, but I Really should be working, so that will have to > either wait or be done by someone else. > Best, > ~G > > > >> This could be implemented by a single function, taking a strictNaming_b_1 >> parameter which defaults to true. Easy to use, and compliance results will >> vary according to the parameter value, allowing strict compliance for new >> package names and lazy compliance for older ones. >> >> Doing so allows to enforce a new package name conventio...
2019 Aug 09
0
Underscores in package names
...wrote: > Won't it be better to have a convention that allows lowercase, dash, > underscore and dot as only valid characters for new package names and keep > the ancient format validation scheme for older package names? > > This could be implemented by a single function, taking a strictNaming_b_1 > parameter which defaults to true. Easy to use, and compliance results will > vary according to the parameter value, allowing strict compliance for new > package names and lazy compliance for older ones. > > Doing so allows to enforce a new package name convention while also > i...
2019 Aug 09
0
Underscores in package names
....names(a1))) FALSE TRUE 14208 542 It would be interesting to do an actual analysis of the changes in these trends over time, but I Really should be working, so that will have to either wait or be done by someone else. Best, ~G > This could be implemented by a single function, taking a strictNaming_b_1 > parameter which defaults to true. Easy to use, and compliance results will > vary according to the parameter value, allowing strict compliance for new > package names and lazy compliance for older ones. > > Doing so allows to enforce a new package name convention while also > in...
2019 Aug 09
0
Underscores in package names
...he changes in >> these >> trends over time, but I Really should be working, so that will have to >> either wait or be done by someone else. >> Best, >> ~G >> >> >> >>> This could be implemented by a single function, taking a >>> strictNaming_b_1 >>> parameter which defaults to true. Easy to use, and compliance results >>> will >>> vary according to the parameter value, allowing strict compliance for >>> new >>> package names and lazy compliance for older ones. >>> >>> Doing...
2019 Aug 09
1
Underscores in package names
...be better to have a convention that allows lowercase, dash, > > underscore and dot as only valid characters for new package names and > keep > > the ancient format validation scheme for older package names? > > > > This could be implemented by a single function, taking a strictNaming_b_1 > > parameter which defaults to true. Easy to use, and compliance results > will > > vary according to the parameter value, allowing strict compliance for new > > package names and lazy compliance for older ones. > > > > Doing so allows to enforce a new package name...
2019 Aug 08
5
Underscores in package names
Are there technical reasons that package names cannot be snake case? This seems to be enforced by `.standard_regexps()$valid_package_name` which currently returns "[[:alpha:]][[:alnum:].]*[[:alnum:]]" Is there any technical reason this couldn't be altered to accept `_` as well, e.g. "[[:alpha:]][[:alnum:]._]*[[:alnum:]]" I realize that historically `_` has not